home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / DEF / Compile / launch-midi < prev    next >
Text File  |  1998-10-27  |  2KB  |  65 lines

  1. launch-midi creator filename
  2.  
  3. To launch a sequencer, scorewrite or other application that accepts
  4. MIDI files compile the file with play-file, compile-song or compile-instrument,
  5. and then use the launch-midi command. 
  6.  
  7. Supply launch-midi the four letter creator code of the application you want 
  8. to launch, and the filename. This filename must be located in ccl;output folder.
  9.  
  10. ;; play-file
  11.  
  12. (play-file "Endless midi"
  13.    all-instr '(sect-a sect-b)
  14. )
  15.  
  16. (launch-midi "SCPL" "Endless midi")
  17.  
  18. ;; compile-song
  19.  
  20. (compile-song "ccl;output:" 1/1 "part3"
  21. ...
  22.  
  23. (launch-midi "SCPL" "part3")
  24.  
  25. ;; compile-instrument
  26.  
  27. (compile-instrument "ccl;output:" "my song"
  28.    perc
  29.    bass
  30. )
  31.  
  32. (launch-midi "SCPL" "my song")
  33.  
  34. Creator Code
  35.  
  36. The four letter here "SCPL" means the creator code of SoundApp. It could be 
  37. any other sequencer that enables to launch MIDI files of its own creator from
  38. the desktop.
  39.  
  40. (play-file "Endless midi"
  41.    all-instr '(sect-a sect-b)
  42. )
  43.  
  44. (launch-midi "SCPL" "Endless midi")
  45.  
  46. To launch Logic use:
  47.  
  48. (launch-midi "EMAG" "Endless midi")
  49.  
  50. To launch Mark of the Unicorn Digital Performer use:
  51.  
  52. (launch-midi "MOUP" "Endless midi")
  53.  
  54. Drag a file on FileFanatic utility program to find out the creator of a new
  55. program. Copy the creator code into launch-midi. If the file does not launch
  56. in SCOM then the application is outdated.
  57.  
  58. Using Quicktime Musical Instruments or OMS
  59.  
  60. SoundApp enables to output to Quicktime Musical Instruments and play back
  61. 16 bit quality music without additional hardware. SoundApp also enables to
  62. use OMS directly. In both cases SCOM enables maximum of 16 channels. More
  63. channels are available using the Midishare and a Miditimepiece compatible
  64. MIDI interface
  65.